@@ -443,7 +443,7 @@ <h3 class="sidebar-subheading sidebar-nav--heading-item is-accordion-heading">{{
443
443
{% if product %}
444
444
< span class ="detail "> {{ pgettext('DB: products.Product.title', product.title) }}</ span >
445
445
{% endif %}
446
- {% if not question.is_moderated and user and user.has_perm('questions.change_question') %}
446
+ {% if user and user.has_perm('questions.change_question') %}
447
447
< select id ="details-product " name ="product ">
448
448
{% for p in all_products %}
449
449
< option {% if product and p.id == product.id %}selected ="selected "{% endif %} value ="{{ p.id }} " data-url ="{{ url('products.product', p.slug) }} "> {{ p.title }}</ option >
@@ -459,7 +459,7 @@ <h3 class="sidebar-subheading sidebar-nav--heading-item is-accordion-heading">{{
459
459
{% if topic %}
460
460
< span class ="detail "> {{ pgettext('DB: products.Topic.title', topic.title) }}</ span >
461
461
{% endif %}
462
- {% if not question.is_moderated and user and user.has_perm('questions.change_question') %}
462
+ {% if user and user.has_perm('questions.change_question') %}
463
463
< select id ="details-topic " name ="topic ">
464
464
{% for t in all_topics %}
465
465
< option {% if topic and t.id == topic.id %}selected ="selected "{% endif %} value ="{{ t.id }} "> {{ t.title }}</ option >
@@ -469,7 +469,7 @@ <h3 class="sidebar-subheading sidebar-nav--heading-item is-accordion-heading">{{
469
469
</ div >
470
470
{% endif %}
471
471
472
- {% if not question.is_moderated and user and user.has_perm('questions.change_question') %}
472
+ {% if user and user.has_perm('questions.change_question') %}
473
473
< div class ="sidebox tight condensed " id ="question-locale ">
474
474
< span class ="title "> {{ _('Locale') }}:</ span >
475
475
< span class ="detail "> {{ settings.LANGUAGES_DICT[question.locale.lower()] }}</ span >
@@ -528,7 +528,7 @@ <h3 class="sumo-card-heading">{{ _('Installed Plug-ins') }}</h3>
528
528
</ section >
529
529
</ div >
530
530
531
- {% if not question.is_moderated and user and user.has_perm('questions.change_question') %}
531
+ {% if user and user.has_perm('questions.change_question') %}
532
532
< div class ="sidebox tight ">
533
533
< a href ="# " id ="details-edit "> {{ _('Edit details') }}</ a >
534
534
</ div >
0 commit comments